go/ast.CompositeLit.Rbrace (field)
6 uses
go/ast (current package)
ast.go#L319: Rbrace token.Pos // position of "}"
ast.go#L526: func (x *CompositeLit) End() token.Pos { return x.Rbrace + 1 }
go/parser
parser.go#L1598: return &ast.CompositeLit{Type: typ, Lbrace: lbrace, Elts: elts, Rbrace: rbrace}
go/printer
nodes.go#L974: p.exprList(x.Lbrace, x.Elts, 1, commaTerm, x.Rbrace, x.Incomplete)
nodes.go#L986: p.print(indent, unindent, mode, x.Rbrace, token.RBRACE, mode)
go/types
expr.go#L1422: check.error(inNode(e, e.Rbrace), _InvalidStructLit, "too few values in struct literal")